luci-mod-network: remove uciname validation from wireless interface
authorHannu Nyman <[email protected]>
Sun, 15 Jan 2023 08:09:30 +0000 (10:09 +0200)
committerJo-Philipp Wich <[email protected]>
Mon, 3 Apr 2023 11:46:20 +0000 (13:46 +0200)
Remove the 'uciname' validation rule, as it prevents using '-' that
is a valid character.

Fixes: 0c1be9ae5 luci-mod-network: Add length restriction to wireless
Signed-off-by: Hannu Nyman <[email protected]>
(cherry picked from commit 8673aef8db90b2ae276b9323f23d078cc68f4189)

modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js

index 6f2199f567503c4035bf6312cf2e895ee3ad1015..5843054aba9f23422d6cf05dd2f36d40bdd17f08 100644 (file)
@@ -1159,7 +1159,7 @@ return view.extend({
 
                                        o = ss.taboption('advanced', form.Value, 'ifname', _('Interface name'), _('Override default interface name'));
                                        o.optional = true;
-                                       o.datatype = 'and(uciname,maxlength(15))';
+                                       o.datatype = 'maxlength(15)';
                                        o.placeholder = radioNet.getIfname();
                                        if (/^radio\d+\.network/.test(o.placeholder))
                                                o.placeholder = '';